crypto/cipher.ctr.ctr (field)

6 uses

	crypto/cipher (current package)
		ctr.go#L25: 	ctr     []byte
		ctr.go#L60: 		ctr:     bytes.Clone(iv),
		ctr.go#L81: 		x.b.Encrypt(x.out[remain:], x.ctr)
		ctr.go#L85: 		for i := len(x.ctr) - 1; i >= 0; i-- {
		ctr.go#L86: 			x.ctr[i]++
		ctr.go#L87: 			if x.ctr[i] != 0 {